home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyo (Python 2.3)
-
- all_feature_names = [
- 'nested_scopes',
- 'generators',
- 'division']
- __all__ = [
- 'all_feature_names'] + all_feature_names
- CO_NESTED = 16
- CO_GENERATOR_ALLOWED = 4096
- CO_FUTURE_DIVISION = 8192
-
- class _Feature:
-
- def __init__(self, optionalRelease, mandatoryRelease, compiler_flag):
- self.optional = optionalRelease
- self.mandatory = mandatoryRelease
- self.compiler_flag = compiler_flag
-
-
- def getOptionalRelease(self):
- return self.optional
-
-
- def getMandatoryRelease(self):
- return self.mandatory
-
-
- def __repr__(self):
- return '_Feature' + repr((self.optional, self.mandatory, self.compiler_flag))
-
-
- nested_scopes = _Feature((2, 1, 0, 'beta', 1), (2, 2, 0, 'alpha', 0), CO_NESTED)
- generators = _Feature((2, 2, 0, 'alpha', 1), (2, 3, 0, 'final', 0), CO_GENERATOR_ALLOWED)
- division = _Feature((2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), CO_FUTURE_DIVISION)
-